home *** CD-ROM | disk | FTP | other *** search
/ Freelog 125 / Freelog_MarsAvril2015_No125.iso / Musique / Quod Libet / quodlibet-3.3.0-installer.exe / bin / xml / __init__.pyc (.txt)
Python Compiled Bytecode  |  2014-12-31  |  1KB  |  45 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.7)
  3.  
  4. '''Core XML support for Python.
  5.  
  6. This package contains four sub-packages:
  7.  
  8. dom -- The W3C Document Object Model.  This supports DOM Level 1 +
  9.        Namespaces.
  10.  
  11. parsers -- Python wrappers for XML parsers (currently only supports Expat).
  12.  
  13. sax -- The Simple API for XML, developed by XML-Dev, led by David
  14.        Megginson and ported to Python by Lars Marius Garshol.  This
  15.        supports the SAX 2 API.
  16.  
  17. etree -- The ElementTree XML library.  This is a subset of the full
  18.        ElementTree XML release.
  19.  
  20. '''
  21. __all__ = [
  22.     'dom',
  23.     'parsers',
  24.     'sax',
  25.     'etree']
  26. _MINIMUM_XMLPLUS_VERSION = (0, 8, 4)
  27.  
  28. try:
  29.     import _xmlplus
  30. except ImportError:
  31.     pass
  32.  
  33.  
  34. try:
  35.     v = _xmlplus.version_info
  36. except AttributeError:
  37.     pass
  38.  
  39. if v >= _MINIMUM_XMLPLUS_VERSION:
  40.     import sys
  41.     _xmlplus.__path__.extend(__path__)
  42.     sys.modules[__name__] = _xmlplus
  43. else:
  44.     del v
  45.